lu_factors Derived Type

type, public :: lu_factors

A container for the results of a LU factorization.


Components

Type Visibility Attributes Name Initial
real(kind=real64), public, allocatable, dimension(:,:) :: L

The lower-triangular factorization.

real(kind=real64), public, allocatable, dimension(:,:) :: P

The pivot tracking matrix.

real(kind=real64), public, allocatable, dimension(:,:) :: U

The upper-triangular factorization.